home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / netinet / RCS / udp.h,v < prev   
Text File  |  1988-06-29  |  1KB  |  68 lines

  1. head     1.2;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.2
  9. date     88.06.29.15.11.44;  author ouster;  state Exp;
  10. branches ;
  11. next     1.1;
  12.  
  13. 1.1
  14. date     88.06.21.11.59.35;  author ouster;  state Exp;
  15. branches ;
  16. next     ;
  17.  
  18.  
  19. desc
  20. @@
  21.  
  22.  
  23. 1.2
  24. log
  25. @Add ifdefs to keep files from being processed twice.
  26. @
  27. text
  28. @/*
  29.  * Copyright (c) 1982, 1986 Regents of the University of California.
  30.  * All rights reserved.
  31.  *
  32.  * Redistribution and use in source and binary forms are permitted
  33.  * provided that this notice is preserved and that due credit is given
  34.  * to the University of California at Berkeley. The name of the University
  35.  * may not be used to endorse or promote products derived from this
  36.  * software without specific prior written permission. This software
  37.  * is provided ``as is'' without express or implied warranty.
  38.  *
  39.  *    @@(#)udp.h    7.2 (Berkeley) 12/7/87
  40.  */
  41.  
  42. #ifndef _UDP
  43. #define _UDP
  44.  
  45. /*
  46.  * Udp protocol header.
  47.  * Per RFC 768, September, 1981.
  48.  */
  49. struct udphdr {
  50.     u_short    uh_sport;        /* source port */
  51.     u_short    uh_dport;        /* destination port */
  52.     short    uh_ulen;        /* udp length */
  53.     u_short    uh_sum;            /* udp checksum */
  54. };
  55.  
  56. #endif _UDP
  57. @
  58.  
  59.  
  60. 1.1
  61. log
  62. @Initial revision
  63. @
  64. text
  65. @d15 3
  66. d28 2
  67. @
  68.